home *** CD-ROM | disk | FTP | other *** search
/ Supercompiler 1997 / SUPERCOMPILER97.iso / Delphi 3.0 / DATA.Z / delphi32.exe / RCDATA / AXNEWSOURCE next >
Encoding:
Text File  |  1997-01-30  |  1.5 KB  |  90 lines

  1. unit %0:s;
  2.  
  3. interface
  4.  
  5. uses
  6.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  7.   StdCtrls, ExtCtrls;
  8.  
  9. type
  10.   T%1:s = class(TForm)
  11.     CtlImage: TSpeedButton;
  12.     NameLbl: TLabel;
  13.     OkBtn: TButton;
  14.     CopyrightLbl: TLabel;
  15.     DescLbl: TLabel;
  16.   end;
  17.  
  18. procedure Show%1:s;
  19.  
  20. implementation
  21.  
  22. {$R *.DFM}
  23.  
  24. procedure Show%1:s;
  25. begin
  26.   with T%1:s.Create(nil) do
  27.     try
  28.       ShowModal;
  29.     finally
  30.       Free;
  31.     end;
  32. end;
  33.  
  34. end.
  35. |object %0:s: T%0:s
  36.   Left = 200
  37.   Top = 108
  38.   BorderIcons = []
  39.   BorderStyle = bsDialog
  40.   AutoScroll = False
  41.   Caption = 'About'
  42.   ClientHeight = 127
  43.   ClientWidth = 267
  44.   Font.Color = clWindowText
  45.   Font.Height = -11
  46.   Font.Name = 'MS Sans Serif'
  47.   Font.Style = []
  48.   Position = poScreenCenter
  49.   PixelsPerInch = 96
  50.   TextHeight = 13
  51. |  object NameLbl: TLabel
  52.     Left = 80
  53.     Top = 16
  54.     Width = 177
  55.     Height = 16
  56.     Caption = '%s'
  57.     Font.Charset = ANSI_CHARSET
  58.     Font.Color = clBlack
  59.     Font.Height = -13
  60.     Font.Name = 'MS Sans Serif'
  61.     Font.Style = [fsBold]
  62.     ParentFont = False
  63.   end
  64.   object CopyrightLbl: TLabel
  65.     Left = 56
  66.     Top = 72
  67.     Width = 155
  68.     Height = 13
  69.     Caption = 'Copyright (c) 1997 Frank Borland'
  70.   end
  71.   object DescLbl: TLabel
  72.     Left = 80
  73.     Top = 34
  74.     Width = 53
  75.     Height = 13
  76.     Caption = 'Description'
  77.   end
  78.   object OkBtn: TButton
  79.     Left = 96
  80.     Top = 96
  81.     Width = 75
  82.     Height = 25
  83.     Caption = 'OK'
  84.     Default = True
  85.     ModalResult = 1
  86.     TabOrder = 0
  87.   end
  88. end
  89. |
  90.